projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a440e3
)
(quoted-insert): Do nothing special for meta chars.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 12 Apr 1994 21:27:10 +0000
(21:27 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 12 Apr 1994 21:27:10 +0000
(21:27 +0000)
lisp/simple.el
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index c0365c24c3b8a07b49917d6fb032031df1d85ed7..10459d73ef35e4f3229093ab9774146f65111741 100644
(file)
--- a/
lisp/simple.el
+++ b/
lisp/simple.el
@@
-82,9
+82,6
@@
this function useful in editing binary files."
(read-char))))
(if (eq overwrite-mode 'overwrite-mode-binary)
(delete-char arg))
- ;; Turn a meta-character into a character with the 0200 bit set.
- (if (/= (logand last-input-char (lsh 1 23)) 0)
- (setq char (logior char 128)))
(insert-char char arg)))
(defun delete-indentation (&optional arg)